GET /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client}Get the roles associated with a client's scope for a specific client.
- HTTP Example:
GET /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client} | - API Example:
ScopeMappedClientResource.getClientScopeMappings({'realm': , 'id': , 'client': …}); |
- Output:
- List<RoleRepresentation> -
- Produces:
- application/json
|
POST /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client}Add client-level roles to the client's scope
- HTTP Example:
POST /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client} | - API Example:
ScopeMappedClientResource.addClientScopeMapping({'realm': , 'id': , 'client': …, '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|
DELETE /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client}Remove client-level roles from the client's scope.
- HTTP Example:
DELETE /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client} | - API Example:
ScopeMappedClientResource.deleteClientScopeMapping({'realm': , 'id': , 'client': …, '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|